projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3fb7fc
)
* s/isc3-0.h (memmove): #define this to call safe_bcopy.
author
Jim Blandy
<jimb@redhat.com>
Wed, 16 Jun 1993 20:52:40 +0000
(20:52 +0000)
committer
Jim Blandy
<jimb@redhat.com>
Wed, 16 Jun 1993 20:52:40 +0000
(20:52 +0000)
src/s/isc3-0.h
patch
|
blob
|
history
diff --git
a/src/s/isc3-0.h
b/src/s/isc3-0.h
index fe5d718bfc9643f0846974423d0eaf2bc48ef17b..f46994e56ff8a2c44b19d2c3568889f8a15ab518 100644
(file)
--- a/
src/s/isc3-0.h
+++ b/
src/s/isc3-0.h
@@
-22,3
+22,8
@@
#undef LIB_X11_LIB
#undef LIBX11_SYSTEM
#define LIBX11_SYSTEM -lpt -lnls -lnsl_s -lc
+
+/* marko@tekelec.com (Marko Rauhamaa) says that his linker couldn't
+ find memmove, but that sounds crazy - I thought all SYSV
+ descendants had that. Let us know if this turns out to be wrong. */
+#define memmove(d, s, n) safe_bcopy ((s), (d), (n))